home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / source / src / Makefile.amiga < prev    next >
Makefile  |  1994-11-16  |  2KB  |  86 lines

  1. ; Special Makefile for the Amiga. This one does only consume a small amount
  2. ; of RAM in comparision to the original makefile.
  3. ;    Gerhard Leibrock, November 1994
  4.  
  5. echo "Makefile for the CBM Amiga family"
  6. echo " Done by Gerhard Leibrock, November 1994*N"
  7. SET EXTENSION "high"
  8. ASK "Generate a version for EVERY Amiga (Y) or optimized 68020, 68881 code (N)?"
  9. IF WARN
  10.   SET EXTENSION "generic"
  11. ENDIF
  12. cd graph
  13.   echo "Entering directory ``graph''"
  14.   date
  15.   make -f makefile.amiga.$EXTENSION
  16.   date
  17.   cd /
  18.  
  19. cd basic
  20.   echo "Entering directory ``basic''"
  21.   date
  22.   make -f makefile.amiga.$EXTENSION
  23.   date
  24.   cd /
  25.  
  26. cd plane
  27.   echo "Entering directory ``plane''"
  28.   date
  29.   make -f makefile.amiga.$EXTENSION
  30.   date
  31.   cd /
  32.  
  33. cd graph_alg
  34.   echo "Entering directory ``graph_alg''"
  35.   date
  36.   make -f makefile.amiga.$EXTENSION
  37.   date
  38.   cd /
  39.  
  40. cd x11
  41.   echo "Entering directory ``x11''"
  42.   date
  43.   make -f makefile.amiga.$EXTENSION
  44.   date
  45.   cd /
  46.  
  47. cd window
  48.   echo "Entering directory ``window''"
  49.   date
  50.   make -f makefile.amiga.$EXTENSION
  51.   date
  52.   cd /
  53.  
  54. cd dict
  55.   echo "Entering directory ``dict''"
  56.   date
  57.   make -f makefile.amiga.$EXTENSION
  58.   date
  59.   cd /
  60.  
  61. cd prio
  62.   echo "Entering directory ``prio''"
  63.   date
  64.   make -f makefile.amiga.$EXTENSION
  65.   date
  66.   cd /
  67.  
  68. cd arith
  69.   echo "Entering directory ``arith''"
  70.   date
  71.   make -f makefile.amiga.$EXTENSION
  72.   date
  73.   cd /
  74. echo "Done..."
  75.  
  76. Ask "Delete *"**.o*" files? "
  77. IF WARN
  78.     execute cleanup.emiga
  79. ENDIF
  80.  
  81. ; Gerhard Leibrock, November 1994
  82. ; Neuhaeuselerstr. 12, 66459 Kirkel, T:(+49) 06849/6134, GERMANY
  83. ;
  84. ; fach5@cipsol.cs.uni-sb.de
  85. ;
  86.